home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / getcmd.lbr / getcmd.doc next >
Text File  |  2009-09-02  |  1KB  |  32 lines

  1.  
  2.   Routine name: GETCMD
  3.  
  4.   Description:  This routine is used in conjunction with compiled IBM
  5.                 Basic to retrieve the contents of the command line used
  6.                 to execute the the program.  The parameter string may
  7.                 then be easily parsed by the Basic program itself.
  8.  
  9.   Calling sequence:
  10.  
  11.      CMD$=SPACE$(len)      ' Establish string to receive command line
  12.      CALL GETCMD (CMD$)    ' Retrieve command line
  13.  
  14.   Build sequence:
  15.  
  16.      LINK BASPROG+GETCMD;
  17.  
  18.   Note: The maximum number of characters returned is determined by the
  19.         length of the string variable passed as a parameter on the CALL 
  20.         or by the actual length of the command line entered.  The name
  21.         of the program entered will have been stripped off by the DOS 
  22.         operating system.
  23.                    
  24.     i.e.  If the DOS command line entered were:
  25.  
  26.                   RUNPROG THIS IS A SET OF PARAMETERS <enter>
  27.   
  28.              Then the string returned to the Basic program would be:
  29.  
  30.                   "THIS IS A SET OF PARAMETERS"
  31.  
  32.